home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH20 / creator / debugger / DebuggerFindDlg.gui < prev    next >
Text File  |  2005-11-23  |  2KB  |  94 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(DebuggerFindDlg) {
  3.     profile = "GuiDialogProfile";
  4.     horizSizing = "right";
  5.     vertSizing = "bottom";
  6.     position = "0 0";
  7.     extent = "640 480";
  8.     minExtent = "8 8";
  9.     visible = "True";
  10.     setFirstResponder = "False";
  11.     modal = "True";
  12.     helpTag = "0";
  13.  
  14.     new GuiWindowCtrl() {
  15.         profile = "GuiWindowProfile";
  16.         horizSizing = "right";
  17.         vertSizing = "bottom";
  18.         position = "220 180";
  19.         extent = "200 108";
  20.         minExtent = "8 8";
  21.         visible = "True";
  22.         setFirstResponder = "False";
  23.         modal = "True";
  24.         helpTag = "0";
  25.         text = "File Search";
  26.         resizeWidth = "True";
  27.         resizeHeight = "True";
  28.         canMove = "False";
  29.         canClose = "False";
  30.         canMinimize = "False";
  31.         canMaximize = "False";
  32.         minSize = "50 50";
  33.  
  34.         new GuiTextCtrl() {
  35.             profile = "GuiTextProfile";
  36.             horizSizing = "right";
  37.             vertSizing = "bottom";
  38.             position = "20 28";
  39.             extent = "99 18";
  40.             minExtent = "8 8";
  41.             visible = "True";
  42.             setFirstResponder = "False";
  43.             modal = "True";
  44.             helpTag = "0";
  45.             text = "Search for:";
  46.         };
  47.         new GuiTextEditCtrl(DebuggerFindStringText) {
  48.             profile = "GuiTextEditProfile";
  49.             horizSizing = "right";
  50.             vertSizing = "bottom";
  51.             position = "20 44";
  52.             extent = "160 18";
  53.             minExtent = "8 8";
  54.             visible = "True";
  55.             setFirstResponder = "False";
  56.             modal = "True";
  57.             altCommand = "DbgFileViewFind();";
  58.             helpTag = "0";
  59.             historySize = "0";
  60.                 fontHL = "14 253 Arial";
  61.                 font = "14 244 Arial";
  62.         };
  63.         new GuiButtonCtrl() {
  64.             profile = "GuiButtonProfile";
  65.             horizSizing = "right";
  66.             vertSizing = "bottom";
  67.             position = "56 80";
  68.             extent = "40 16";
  69.             minExtent = "8 8";
  70.             visible = "True";
  71.             setFirstResponder = "False";
  72.             modal = "True";
  73.             command = "DbgFileViewFind();";
  74.             helpTag = "0";
  75.             text = "Find";
  76.         };
  77.         new GuiButtonCtrl() {
  78.             profile = "GuiButtonProfile";
  79.             horizSizing = "right";
  80.             vertSizing = "bottom";
  81.             position = "104 80";
  82.             extent = "40 16";
  83.             minExtent = "8 8";
  84.             visible = "True";
  85.             setFirstResponder = "False";
  86.             modal = "True";
  87.             command = "Canvas.popDialog(DebuggerFindDlg);";
  88.             helpTag = "0";
  89.             text = "Cancel";
  90.         };
  91.     };
  92. };
  93. //--- OBJECT WRITE END ---
  94.